home *** CD-ROM | disk | FTP | other *** search
- 69
- --- RECORDSEPARATOR ---
-
- --- RECORDSEPARATOR ---
- HideTaskBar
- --- RECORDSEPARATOR ---
- Platform:
- --- RECORDSEPARATOR ---
-
- --- RECORDSEPARATOR ---
- Windows and Macintosh
- --- RECORDSEPARATOR ---
-
- --- RECORDSEPARATOR ---
- Description:
- --- RECORDSEPARATOR ---
-
- --- RECORDSEPARATOR ---
- baHideTaskBar shows/hides the task bar/dock.
- --- RECORDSEPARATOR ---
-
- --- RECORDSEPARATOR ---
- Usage:
- --- RECORDSEPARATOR ---
-
- --- RECORDSEPARATOR ---
- Result = baHideTaskBar( Hide )
- --- RECORDSEPARATOR ---
-
- --- RECORDSEPARATOR ---
- Arguments:
- --- RECORDSEPARATOR ---
-
- --- RECORDSEPARATOR ---
- Integer.
- --- RECORDSEPARATOR ---
- If Hide is true, the task bar is hidden, else it will be visible.
- --- RECORDSEPARATOR ---
-
- --- RECORDSEPARATOR ---
- Returns:
- --- RECORDSEPARATOR ---
-
- --- RECORDSEPARATOR ---
- Integer.
- --- RECORDSEPARATOR ---
- Returns the previous state of the task bar - 1 if it is visible, 0 if it isn't.
- --- RECORDSEPARATOR ---
-
- --- RECORDSEPARATOR ---
- Examples:
- --- RECORDSEPARATOR ---
-
- --- RECORDSEPARATOR ---
- Director:
- --- RECORDSEPARATOR ---
- set showing = baHideTaskBar( true )
- --- RECORDSEPARATOR ---
- Authorware:
- --- RECORDSEPARATOR ---
- showing := baHideTaskBar( true )
- --- RECORDSEPARATOR ---
-
- --- RECORDSEPARATOR ---
- Notes:
- --- RECORDSEPARATOR ---
-
- --- RECORDSEPARATOR ---
- On
- --- RECORDSEPARATOR ---
- Windows
- --- RECORDSEPARATOR ---
- , this function will not change the user's task bar settings - the 'Always
- --- RECORDSEPARATOR ---
- on top' and 'Auto hide' settings.
- --- RECORDSEPARATOR ---
- On
- --- RECORDSEPARATOR ---
- Mac
- --- RECORDSEPARATOR ---
- , this function is only present in the OSX version. This function will only
- --- RECORDSEPARATOR ---
- work under OSX 10.2 and later. There are differences between the way the
- --- RECORDSEPARATOR ---
- function works under 10.2 and 10.3, due to Apple bugs and differences in
- --- RECORDSEPARATOR ---
- implementation between the two operating systems.
- --- RECORDSEPARATOR ---
- baHideTaskBar( 0 )
- --- RECORDSEPARATOR ---
- shows the dock and menubar
- --- RECORDSEPARATOR ---
- baHideTaskBar( 1 )
- --- RECORDSEPARATOR ---
- hides only the dock on 10.3; hides the dock and menu bar on 10.2
- --- RECORDSEPARATOR ---
- baHideTaskBar( 2 )
- --- RECORDSEPARATOR ---
- hides the dock and menu bar on both
- --- RECORDSEPARATOR ---
- baHideTaskBar( 3 )
- --- RECORDSEPARATOR ---
- sets the dock to autohide on 10.3; hides the dock and menu bar on 10.2
- --- RECORDSEPARATOR ---
- The dock and menu bar will be hidden only when the projector is the active
- --- RECORDSEPARATOR ---
- application. On 10.2, when the projector is activated again, the dock will be hidden
- --- RECORDSEPARATOR ---
- again; under 10.3 it won't be.
- --- RECORDSEPARATOR ---
- The function return on
- --- RECORDSEPARATOR ---
- Mac
- --- RECORDSEPARATOR ---
- will always be 0.